JS - 日期選擇欄位 Posted on 2018-06-01 | In Web功能 需引入jQuery函式庫,使用的是jQuery的Datepicker部件 12345678910111213<head> ... <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> ... <script> $( function() { $( ".datepicker" ).datepicker({dateFormat: "yy-mm-dd"}); } ); </script> ....</head>日期 : <input type="text" class="datepicker" name="date" size="8" placeholder="請選擇"> 非常好用,網路上的介紹也非常多!官方文檔:https://jqueryui.com/datepicker/